projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
10b5ec2
)
Fix nicks for the window class enum
author
Matthias Clasen
<mclasen@redhat.com>
Wed, 14 Dec 2011 02:13:31 +0000
(21:13 -0500)
committer
Matthias Clasen
<mclasen@redhat.com>
Wed, 14 Dec 2011 02:15:14 +0000
(21:15 -0500)
As pointed out in bug 665999, these were just not right.
Before this commit, the nicks were 'output' and 'only'.
After this commit, they are 'input-output' and 'input-only'.
gdk/gdkwindow.h
patch
|
blob
|
history
diff --git
a/gdk/gdkwindow.h
b/gdk/gdkwindow.h
index 58f98bd75a0d5da0d1947e36cda55be5e2841c2e..dc12fdfd0f207045e9d6ccec061a3ec5243de059 100644
(file)
--- a/
gdk/gdkwindow.h
+++ b/
gdk/gdkwindow.h
@@
-53,8
+53,8
@@
typedef struct _GdkWindowRedirect GdkWindowRedirect;
*/
typedef enum
{
- GDK_INPUT_OUTPUT,
- GDK_INPUT_ONLY
+ GDK_INPUT_OUTPUT,
/*< nick=input-output >*/
+ GDK_INPUT_ONLY
/*< nick=input-only >*/
} GdkWindowWindowClass;
/**